body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.created_by {
    margin-left: auto;
    margin-right: 50px;
    padding: 10px;
    font-size: 12px;
    width: fit-content;
    color: white;
}
.created_by a {
    color: white;
    text-decoration: none;
}
.created_by:hover {
    text-decoration: underline;
}
.menu {
    position: fixed;
    width: 100%;
    height: 70px;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 0px;
    top: 0px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #e71b27;
    font-weight: bold;
}
@media (max-width: 600px) {
    .menu ul {
        
        gap: 10px;
    }
}